Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

254
Views
How to pass a parameter into addEventListener("click", myFunction)?

When adding the eventlistener ("click", myFunction) how can I pass in a parameter to myFunction without invoking it? Like... ("click", myFunction(arrayOne)). The button is triggering a function that uses arrays. I want the function to use a specific array based on a specific button.

   var btnOne = document.getElementById("btnOne);
   btnOne.addEventListener("click", myFunction);
about 4 years ago · Juan Pablo Isaza
2 answers
Answer question

0

try this:

var btnOne = document.getElementById("btnOne);
btnOne.addEventListener("click", () => myFunction(params));
about 4 years ago · Juan Pablo Isaza Report

0

You can use arrow function to do it. It'll help you by not creating a new lexical scope, so no need to worry about mishandling this.

var btnOne = document.getElementById("btnOne");
btnOne.addEventListener("click", () => { myFunction(arg1, arg2...) });
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!